跳到主要内容

C++ 读取一整行

我们应该用 getline 替代 >> 运算符:

while (getline(cin, line)) cout << line << endl;

注意换行符不被读取。